home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / progs / editor / amis / scripts / nexterror.rexx < prev    next >
OS/2 REXX Batch file  |  1996-12-30  |  269b  |  25 lines

  1. /* Next error */
  2.  
  3. OPTIONS RESULTS
  4. OPTIONS FAILAT 31
  5.  
  6. ADDRESS 'SC_SCMSG'
  7.  
  8. 'next'
  9. 'text'
  10. msg=result
  11. 'class'
  12. class=result
  13. 'select'
  14.  
  15. ADDRESS 'AMISPORT.1'
  16.  
  17. IF msg='' THEN
  18. DO
  19.   'Message "   No errors." TIME=50'
  20. END
  21. ELSE
  22. DO
  23.   'Message "   '||class||': '||msg||'" TIME=50'
  24. END
  25.